home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / langs / c68_445b.zoo / src / cc68x / makefile < prev    next >
Encoding:
Makefile  |  1995-02-01  |  268 b   |  19 lines

  1. CC = cc68x
  2. CFLAGS = -O -v -W5
  3. #CC = cc68
  4. #CFLAGS = -O -Qwarn=5
  5. #CC = cc
  6. #CFLAGS = -O
  7.  
  8. TARGET = cc68x.ttp
  9. OBJS = main.o run.o utils.o
  10.  
  11. $(TARGET): $(OBJS)
  12.     $(CC) $(CFLAGS) -o $(TARGET) $(OBJS) -liio
  13.  
  14. $(OBJS): global.h
  15. main.o: patchlev.h
  16.  
  17. clean:
  18.     rm -f $(TARGET) $(OBJS)
  19.